.registration-header{
    padding-top: 8rem;
    margin: 3rem;
    margin-bottom: 5rem;
}

.registration-header h1{
    font-size: 8rem;
}

.registration-header p{
    font-size: 3rem;
}

.course-calendar{
    display: block;
    position: relative;
    margin: auto;
    margin-top: 5rem;
    margin-bottom: 10vh;
    border: 0.8rem solid #658DCD;
    border-bottom-color: #93AFDC;
    border-right-color: #93AFDC;
    border-radius: 2rem;

    width: 52vw;
    height: 40vw;
}

.offered-courses{
    margin: 3rem;
}

.offered-courses h1{
    font-size: 3rem;
}

.offered-courses .text{
    text-align: center;
    margin-bottom: 5rem;
}

.offered-courses .course-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 2rem;
}

.offered-courses .course-container h1{
    text-align: center;
}

.offered-courses .course-container .courses{
    border-radius: 1rem;
    width: 80%;
    height: 90%;
    padding: 2rem;
    margin: auto;
    margin-bottom: 2rem;
}

.courses .button-section, .sign-up-section{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.courses a{
    padding: 1rem;
    font-size: 1rem;
    margin: 1rem;
    border-radius: 1rem;
    background-color: var(--background-colour);
    border: 1px solid #8d8d8d;
    text-align: center;
}

.sign-up-section a{
    font-size: 1.5rem;
    padding: 0.8rem; 
    border-radius: 2rem;
    background-color: #28285B;
    color: white; 
    width: fit-content; 
}

.sign-up-section i{
    color: var(--primary-colour);
    background-color: white;
    border-radius: 50%;
    padding: 0.5rem 0.625rem 0.5rem 0.625rem;
}

.sign-up-section a:hover{
    background-color: var(--light-blue);
    color: var(--primary-colour);
}

.sign-up-section a:hover i{
    background-color: var(--primary-colour);
    color: var(--light-blue);
}

@media only screen and (max-width: 1300px){
    .course-calendar{
        width: 65vw;
        height: 50vw;
    }
}

@media only screen and (max-width:700px){
    
    .registration-header h1{
        font-size: 3rem;
        margin-bottom: 2rem;
    }
    .registration-header p{
        font-size: 1.25rem;
    }

    .course-calendar{
        width: 78vw;
        height: 60vw;
    }

    .offered-courses{
        margin: 0;
    }
    .offered-courses .text{
        margin-bottom: 0;
    }

    .offered-courses .course-container{
        grid-template-columns: 1fr;
        margin: 1rem;
    }

    .offered-courses .course-container .courses{
        height: auto;
    }
}


@media only screen and (max-width:1100px){
    .offered-courses .course-container{
        grid-template-columns: 1fr;
        margin: 1rem;
    }
    .offered-courses .course-container .courses{
        height: auto;
    }
}

@media only screen and (max-width:350px){
    .offered-courses .course-container{
        margin: 0rem;
    }
}